home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 9 / FM Towns Free Software Collection 9.iso / taropyon / silib / inc / scn / plt.h < prev   
Encoding:
C/C++ Source or Header  |  1994-11-16  |  337 b   |  19 lines

  1. #ifndef    _SCN_PLT_H
  2. #define    _SCN_PLT_H
  3.  
  4. #ifndef    _SITYPES_H
  5. #    include    <sitypes.h>
  6. #endif
  7.  
  8. typedef struct                /* パレットデータ構造体        */
  9. {
  10.     UCHAR    att;
  11.     UCHAR    blue, red, green;
  12. } PLT_T;
  13.  
  14. #define    PLTATT_USR        (0x00)    /* ユーザーパレット    */
  15. #define    PLTATT_SYS        (0x08)    /* システムパレット    */
  16. #define    PLTATT_UFLG        (0x80)
  17.  
  18. #endif
  19.